.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .booking-section {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }
}
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.driver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .driver-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .driver-grid {
    grid-template-columns: 1fr;
  }
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}